Description
The root element for all ArcPad XML statements.
Diagram
Overview
|
ArcPad
The root element for all ArcPad XML statements.
|
Sequence
|
STYLESHEET
Defines a series of named symbology styles for point, line, and polygon layers.
|
Sequence
|
FILLSTYLES
Used to group polygon feature symbols in a stylesheet.
|
Sequence
|
STYLE 1..∞
Used to specify the symbol for a style in a stylesheet.
|
|
|
|
LINESTYLES
Used to group line feature symbols in a stylesheet.
|
Sequence
|
STYLE 1..∞
Used to specify the symbol for a style in a stylesheet.
|
|
|
|
MARKERSTYLES
Used to group point feature symbols in a stylesheet.
|
Sequence
|
STYLE 1..∞
Used to specify the symbol for a style in a stylesheet.
|
|
|
|
TEXTSTYLES
Used to group text symbols in a stylesheet.
|
Sequence
|
STYLE 1..∞
Used to specify the symbol for a style in a stylesheet.
|
|
|
|
|
|
|
Examples
Source
<xs:element name="ArcPad" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>The root element for all ArcPad XML statements.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="STYLESHEET">
<xs:complexType>
<xs:sequence>
<xs:element name="FILLSTYLES">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" ref="STYLE" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="LINESTYLES">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" ref="STYLE" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="MARKERSTYLES">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" ref="STYLE" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="TEXTSTYLES">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" ref="STYLE" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
|
See Also